*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
/* banner */
.ban{
    background-image:url(./baneerimage.png);
    width: 100%;
    height: 5vh;
    background-repeat: no-repeat;
    background-size: cover;
}
.banrap{
    width: 100%;
    height: 50vh;
}
.banrap1 {
    margin: auto;
    /* padding-top: 375px; */
}
/* navigation bar */
#nav{
    width: 100%;
    height: 10vh;
    background: white;
    position: relative;
    top: 0px;
    padding-top: 3vh;
    border-bottom: 5px solid white;
}
.navrap{
    width: 80%;
    margin: auto;
}
.logo{
    position: absolute;
    padding-left: 40vh;
}
.logo img{
    height: 15vh;
}
/* navigation bar1 */
#nav1{
    width: 100%;
    height: 7.5vh;
    background: rgb(118, 11, 11);
    position: relative;
    margin-top: 5%;
    /* border-bottom: 5px solid black; */
}
.navrap1{
    width: 80%;
    margin: auto;
}
.menu{
    float: right;
}
.menu ul{
    margin-top: 20px;
}
.menu ul li{
    display: inline;
}
.menu ul li a {
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    padding-left: 35px;
    padding-right: 35px;
    background-color: rgb(118, 11, 11);
    color: white;
}
.menu ul li a:hover{
    color: black
}
/* contact */
.contact{
    min-height: 100vh;
    background-color: #e8f0fe;
    padding: 50px;
    text-align: center;
}
.container{
    max-width: 800px;
    margin: 0 auto;
    height: 130vh;
}
.container h2{
    text-align: center;
    padding-top: 40px;
    font-size: 100px;
    margin-bottom: 40px;
    color: rgb(106, 12, 12);
}
.container p{
    padding-left: 40px;
    padding-top: 10px;
    text-align: center;
    font: italic;
    color: rgb(94, 63, 7);
    font-size: 40px;
}
.contact-wrapper{
    display: grid;
    padding-top: 10%;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 30px;
}
.contact-form{
    text-align: left;
}
.contact-form h3{
    font-size: 35px;
    margin-bottom: 20px;
    color: #333;
}
.form-group{
    margin-bottom: 25px;
}
input,textarea{
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background-color: #f8f9fa;
    color: #333;
}
input:focus,
textarea:focus{
    outline: none;
    box-shadow: 0 0 8px #bbb;
}
button{
    display: inline-block;
    padding: 12px 24px;
    background-color: palevioletred;
    color: #fff;
    border: none;
    cursor: pointer;
}
button:hover{
    background-color: palevioletred;
}
/* footer */
.footercontainer{
    background-color: #111;
}
.footercontainer{
    width: 100%;
    padding: 70px 30px 20px;
}
.socialicons{
    display: flex;
    justify-content: center;
}
.socialicons a{
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
}
.socialicons a i{
    font-size: 2em;
    color: black;
    opacity: 0.9;
}
.socialicons a:hover{
    background-color: #111;
    transition: 0.5s;
}
.socialicons a:hover i{
    color: white;
    transition: 0.5s;
}
.footerNav{
    margin: 30px 0;
}
.footerNav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
}
.footerNav ul li a{
    color: white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;
}
.footerNav ul li a:hover{
    opacity: 1;
}
.footerBottom{
    background-color: #000;
    padding: 20px;
    text-align: center;
}
.footerBottom p{
    color: white;
}
.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}
@media(max-width: 700px){
    .footerNav ul{
        flex-direction: column;
    }
    .footerNav ul li{
        width: 100%;
        text-align: center;
        margin: 10px;
    }
}